home *** CD-ROM | disk | FTP | other *** search
/ KWIKEE Auto Advertising System 1999 1 / KWIKEE Auto Advertising System 1999 - 1.iso / mac / Applications / CAMS Interactive / camsmain.dir / 00008_Script_8 < prev    next >
Text File  |  1997-06-09  |  1KB  |  57 lines

  1. on startMovie
  2.   global gOldSound
  3.   put the soundLevel into gOldSound
  4.   set the soundLevel = 5
  5.   repeat with i = 30 to 37
  6.     set the visible of sprite i to FALSE
  7.   end repeat
  8. end
  9.  
  10. on indexRoll
  11.   if rollover (30) then
  12.     set the visible of sprite 30 to TRUE
  13.   else
  14.     set the visible of sprite 30 to FALSE
  15.   end if
  16.   if rollover (31) then
  17.     set the visible of sprite 31 to TRUE
  18.   else
  19.     set the visible of sprite 31 to FALSE
  20.   end if
  21.   if rollover (32) then
  22.     set the visible of sprite 32 to TRUE
  23.   else
  24.     set the visible of sprite 32 to FALSE
  25.   end if
  26.   if rollover (33) then
  27.     set the visible of sprite 33 to TRUE
  28.   else
  29.     set the visible of sprite 33 to FALSE
  30.   end if
  31.   if rollover (34) then
  32.     set the visible of sprite 34 to TRUE
  33.   else
  34.     set the visible of sprite 34 to FALSE
  35.   end if
  36.   if rollover (35) then
  37.     set the visible of sprite 35 to TRUE
  38.   else
  39.     set the visible of sprite 35 to FALSE
  40.   end if
  41.   if rollover (36) then
  42.     set the visible of sprite 36 to TRUE
  43.   else
  44.     set the visible of sprite 36 to FALSE
  45.   end if
  46.   if rollover (37) then
  47.     set the visible of sprite 37 to TRUE
  48.   else
  49.     set the visible of sprite 37 to FALSE
  50.   end if
  51. end
  52.  
  53. on stopMovie
  54.   global gOldSound
  55.   set the soundLevel = gOldSound
  56. end
  57.